/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background-color: #f4f9f4;
  color: #333;
}

/* Container */
.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

/* Header Styling */
header {
  background: #2c3e50;
  color: #ecf0f1;
  padding: 20px 0;
  border-bottom: #27ae60 4px solid;
}

header a {
  color: #ecf0f1;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  transition: color 0.3s ease;
}

header ul {
  padding: 0;
  list-style: none;
}

header li {
  float: left;
  display: inline;
  padding: 0 20px;
}

header #branding {
  float: left;
}

header #branding h1 {
  margin: 0;
  font-size: 24px;
}

header nav {
  float: right;
}

header .highlight {
  color: #27ae60;
}

header .current a {
  color: #27ae60;
}

header a:hover {
  color: #27ae60;
}

/* Hero Section */
#hero {
  background: url('../images/hero.jpg') no-repeat center center/cover;
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding: 0 20px;
}

#hero h1 {
  font-size: 50px;
  margin-bottom: 10px;
}

#hero p {
  font-size: 20px;
  margin-bottom: 20px;
}

#hero .btn {
  padding: 10px 20px;
  background: #27ae60;
  color: #fff;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 16px;
  transition: background 0.3s ease;
  text-decoration: none;
}

#hero .btn:hover {
  background: #1abc9c;
}

/* Newsletter Section */
#newsletter {
  padding: 15px;
  color: #fff;
  background: #27ae60;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#newsletter h1 {
  margin: 0;
  font-size: 24px;
}

#newsletter form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#newsletter input[type="email"] {
  padding: 10px;
  height: 40px;
  border: none;
  width: 250px;
  margin-right: 10px;
  border-radius: 4px;
}

#newsletter button {
  padding: 10px 20px;
  border: none;
  background: #2c3e50;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
  border-radius: 4px;
}

#newsletter button:hover {
  background: #1abc9c;
}

/* Services Section */
#services {
  padding: 60px 0;
  background: #f4f9f4;
  text-align: center;
}

#services .service-box {
  flex: 1;
  padding: 20px;
  margin: 20px;
  background: #ecf0f1;
  border-radius: 8px;
  transition: background 0.3s ease;
}

#services .service-box i {
  margin-bottom: 10px;
  color: #27ae60;
}

#services .service-box:hover {
  background: #bdc3c7;
}

/* About Section */
#about {
  display: flex;
  align-items: center;
  padding: 60px 0;
}

#about .about-img {
  flex: 1;
}

#about .about-img img {
  width: 100%;
  border-radius: 8px;
}

#about .about-content {
  flex: 1;
  padding: 20px;
}

#about h2 {
  margin-bottom: 20px;
}

#about p {
  margin-bottom: 20px;
}

#about .btn {
  padding: 10px 20px;
  background: #27ae60;
  color: #fff;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 16px;
  transition: background 0.3s ease;
  text-decoration: none;
}

#about .btn:hover {
  background: #1abc9c;
}

/* Contact Section */
#contact {
  padding: 60px 0;
  text-align: center;
}

#contact h2 {
  margin-bottom: 20px;
}

#contact p {
  margin-bottom: 20px;
}

#contact form {
  max-width: 600px;
  margin: 0 auto;
}

#contact input, #contact textarea {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
}

#contact button {
  padding: 10px 20px;
  background: #27ae60;
  color: #fff;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#contact button:hover {
  background: #1abc9c;
}

/* Footer */
footer {
  background: #2A9B7C;
  color: #ecf0f1;
  text-align: center;
  /* padding: 20px 0; */
}

footer p {
  margin: 0;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  display: inline;
  margin: 0 10px;
}

footer ul li a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer ul li a:hover {
  color: #27ae60;
}
